@charset "UTF-8";

.content {
    position: relative;
    overflow: hidden;
}

.picB {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.picB img.bannerPic {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    transition: all 0.5s ease 0s;
}

.picB {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.picB img.bannerPic {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 101%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    transition: all 0.5s ease 0s;
}

.swiper_text {
    position: absolute;
    z-index: 2;
    width: 94%;
    max-width: 1720px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: 2px;
    padding: 0 50px;
}

.swiper_text h3.sw_name {
    font-size: var(--yx_FS38);
    color: rgb(255, 255, 255);
    max-width: 625px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 1s ease 0.5s;
    font-weight: bold !important;
    line-height: 150%;
}

.swiper-slide[data-swiper-slide-index="2"] .swiper_text h3.sw_name {
    max-width: 560px;
}

.swiper-slide-active .swiper_text h3.sw_name {
    transform: translateY(0px);
    opacity: 1;
}

.moreBox {
    display: flex;
    flex-wrap: wrap;
    margin-top: var(--yx_FS30);
    transform: translateY(100px);
    opacity: 0;
    transition: all 1s ease 0.8s;
}

.swiper-slide-active .swiper_text .moreBox {
    transform: translateY(0px);
    opacity: 1;
}

.moreBox a {
    width: 180px;
    height: 60px;
    border: 2px solid rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--yx_FS18);
    color: rgb(255, 255, 255);
    margin-right: var(--yx_FS18);
    transition: all 0.5s ease 0s;
}

.moreBox a.active {
    border: 2px solid rgb(227, 82, 5);
    background: rgb(227, 82, 5);
}

.indban_but {
    position: absolute;
    z-index: 2;
    width: 94%;
    max-width: 1700px;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.indban_but>div {
    width: calc(var(--yx_FS20) * 5);
    height: calc(var(--yx_FS20) * 5);
    background: rgb(48 48 48 / 85%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .5s;
}

.indban_but>div:hover {
    background: rgb(0, 87, 184);
}

.indban_but>div img {
    max-width: 25px;
}

.indban_but .indban_next {
    position: absolute;
    right: 0px;
    top: 0px;
}

.indban_but .indban_prev {
    position: relative;
}

.indban_but .indban_prev .bgimg {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    left: 100%;
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-transform: rotatey(90deg);
    transform: rotatey(90deg);
}

.indban_but .indban_prev:hover .bgimg {
    opacity: 1;
    -webkit-transform: rotatey(0deg);
    transform: rotatey(0deg);
}

.indban_but .indban_next .bgimg {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    right: 100%;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: rotatey(90deg);
    transform: rotatey(90deg);
}

.indban_but .indban_next:hover .bgimg {
    opacity: 1;
    -webkit-transform: rotatey(0deg);
    transform: rotatey(0deg);
}

section.yx_product {
    background: #F5F5F5;
    padding: 6% 0 8%;
}

.product_center {
    max-width: 1720px;
    width: 94%;
    margin: 0 auto;
}

.product_center h3.p_tit {
    text-align: center;
    font-size: var(--yx_FS42);
    color: var(--yx_Color);
    letter-spacing: 2px;
    font-weight: bold !important;
}

.product_center p.p_sum {
    text-align: center;
    font-size: var(--yx_FS16);
    color: #333;
    margin: var(--yx_FS16) 0 calc(var(--yx_FS42) * 2);
    letter-spacing: 2px;
}

ul.yx_proul {
    display: flex;
    flex-wrap: wrap;
    gap: 3vw;
}

section.yx_product li {
    position: relative;
    overflow: hidden;
    letter-spacing: 2px;
    width: calc((100% - 6vw) / 3);
}

section.yx_product .imgbox {
    width: 100%;
    height: 0;
    padding-bottom: 56%;
    overflow: hidden;
    position: relative;
}

section.yx_product .imgbox img {
    position: absolute;
    width: 101%;
    min-height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all .5s;
    object-fit: contain;
}

section.yx_product li:hover .imgbox img {
    transform: translate(-50%, -50%) scale(1.05);
}

section.yx_product li .name {
    position: absolute;
    height: 42%;
    left: 0;
    bottom: 0;
    width: 100%;
    color: #fff;
    font-size: var(--yx_FS24);
    display: flex;
    z-index: 1;
    padding: 6%;
    transition: all .3s;
    align-items: flex-end;
}

section.yx_product li:hover .name {
    opacity: 0;
}

section.yx_product li .name:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.47;
    z-index: -1;
}

.p_textbox {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    background: rgb(0 87 184 / 86%);
    height: 100%;
    padding: 6%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    transition: all .2s ease;
    opacity: 0;
}

section.yx_product li:hover .p_textbox {
    top: 0%;
    opacity: 1;
}

.p_textbox p.p_name {
    font-size: var(--yx_FS28);
    font-weight: bold;
}



.p_textbox summary {
    font-size: var(--yx_FS16);
    margin: var(--yx_FS14) 0 0;
}

.p_textbox .span_more {
    width: 180px;
    height: 42px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yx_Color);
    margin: 2vw 0 0;
    position: relative;
    z-index: 2;
}

.qodef-m-arrowline {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 63px;
    height: 19px;
    left: 8px;
    fill: var(--yx_Color);
}

.qodef-m-arrowline * {
    stroke: currentColor;
    stroke-miterlimit: 10;
    color: var(--yx_Color);
}

.qodef-m-arrowline .arrow-down,
.qodef-m-arrowline .arrow-up {
    opacity: 1;
    -webkit-transition: opacity .1s ease, -webkit-transform .3s ease;
    transition: opacity .1s ease, -webkit-transform .3s ease;
    -o-transition: transform .3s ease, opacity .1s ease;
    transition: transform .3s ease, opacity .1s ease;
    transition: transform .3s ease, opacity .1s ease, -webkit-transform .3s ease
}

.qodef-m-arrowline .arrow-up {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right
}

.qodef-m-arrowline .arrow-down {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right
}

.p_textbox .span_more:hover .arrow-down,
.p_textbox .span_more:hover .arrow-up {
    opacity: 0;
    -webkit-transform: rotate(-40deg);
    -ms-transform: rotate(-40deg);
    transform: rotate(-40deg);
    -webkit-transition: opacity .1s ease .1s, -webkit-transform .3s ease;
    transition: opacity .1s ease .1s, -webkit-transform .3s ease;
    -o-transition: transform .3s ease, opacity .1s ease .1s;
    transition: transform .3s ease, opacity .1s ease .1s;
    transition: transform .3s ease, opacity .1s ease .1s, -webkit-transform .3s ease
}

.p_textbox .span_more:hover .arrow-down {
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg)
}

.p_textbox a.more {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

.p_textbox:before {
    content: '';
    width: 0;
    height: 0;
    border-color: whitesmoke whitesmoke transparent transparent;
    border-width: 50px 50px 50px 50px;
    border-style: solid;
    right: 0;
    top: 0;
    position: absolute;
}

section.yx_industry {
    padding: 6% 0 2%;
    background-image: url(/src/Img/appbg.jpg);
    background-position: center;
    background-size: cover;
}

.industry_center {
    max-width: 1400px;
    width: 74%;
    margin: 0 auto;
}

h3.i_tit {
    text-align: center;
    font-size: var(--yx_FS42);
    color: var(--yx_Color);
    font-weight: bold !important;
    letter-spacing: 2px;
}

p.i_sum {
    text-align: center;
    font-size: var(--yx_FS16);
    color: #333;
    margin: var(--yx_FS16) 0 calc(var(--yx_FS54) * 2);
    letter-spacing: 2px;
}

.industry_center .imgbox {
    width: 100%;
    height: 0;
    padding-bottom: 80%;
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    background-size: contain;
}

.industry_center li.yx_List5:hover .imgbox {
    transform: rotateY(360deg);
    transition: all .8s;
}

.industry_center .imgbox:before {
    background: #fff;
    content: "";
    height: 300px;
    left: 0;
    position: absolute;
    top: -20%;
    transform: rotate(135deg);
    width: 34px;
    z-index: -10;
    opacity: 0;
}

.industry_center li.yx_List5:hover .imgbox:before {
    left: 50%;
    transition: all .5s ease .4s;
    opacity: .4;
}

.industry_center p.iname {
    text-align: center;
    color: #8B8B8B;
    font-size: var(--yx_FS20);
    MARGIN-TOP: var(--yx_FS20);
}

.industry_center li.yx_List5 {
    position: relative;
    transition: all .5s;
}

.industry_center li.yx_List5 a.more {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.industry_center li.yx_List5:hover p.iname {
    color: #000;
}

section.yx_advantage {
    padding: 5% 0;
    background-image: url(/src/Img/ydbg.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    background-attachment: fixed;
}

.advantage_center {
    max-width: 1400px;
    width: 94%;
    margin: 0 auto;
}

section.yx_advantage h3.adv_tit {
    font-size: calc(var(--yx_FS48));
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 30px 0 26px;
    font-weight: bold !important;
}

section.yx_advantage h3.adv_tit:before {
    content: '';
    width: 60px;
    height: 4px;
    background: #E35205;
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

p.adv_sum {
    font-size: var(--yx_FS18);
    letter-spacing: 2px;
}

section.yx_work {
    overflow: hidden;
    background-image: url(/src/Img/solutionbg.jpg);
    background-position: center;
    background-size: cover;
    padding: 6% 0 4%;
}

.yx_work .swiper-container {
    overflow: visible;
    padding-bottom: 7%;
}

.yx_work .swiper-container-horizontal>.swiper-scrollbar {
    width: 100%;
    height: 2px;
    left: 50%;
    max-width: 100%;
    transform: translateX(-50%);
    background: #DFDFDF;
    position: absolute;
    bottom: 0;
}

.yx_work .swiper-container-horizontal>.swiper-scrollbar .swiper-scrollbar-drag {
    background: #0057B8;
    height: 3px;
    cursor: pointer;
}

.work_content {
    position: relative;
    width: 100%;
    overflow: hidden;
    transition: all .5s;
    background: #fff;
}

.work_content:hover {
    box-shadow: 1px 1px 10px rgb(0 0 0 / 20%);
}

.work_content .work_picB {
    width: 100%;
    height: 0;
    padding-bottom: 56%;
    overflow: hidden;
    position: relative;
}

.work_content .work_picB img {
    position: absolute;
    width: 101%;
    min-height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all .5s;
    object-fit: cover;
}

.work_content .work_text {
    padding: 6%;
    min-height: calc(var(--yx_FS60) * 5);
    position: relative;
    letter-spacing: 2px;
}

.yx_work .swiper-slide:nth-of-type(1n) .work_text {
    border-top: 6px solid #00B9FF;
}

.yx_work .swiper-slide:nth-of-type(2n) .work_text {
    border-top: 6px solid #ECCC48;
}

.yx_work .swiper-slide:nth-of-type(3n) .work_text {
    border-top: 6px solid #84BD00;
}

.yx_work .swiper-slide:nth-of-type(4n) .work_text {
    border-top: 6px solid #E35205;
}

.yx_work .swiper-slide:nth-of-type(5n) .work_text {
    border-top: 6px solid #15CDD4;
}

.work_content .work_text p.work_name {
    font-size: var(--yx_FS36);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
}

.work_content .work_text summary {
    font-size: var(--yx_FS16);
    margin: var(--yx_FS36) 0 0;
}

.work_content .work_text span {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -40%;
    line-height: calc(var(--yx_FS60) * 1.5);
    text-align: center;
    font-size: var(--yx_FS24);
    background: #E35205;
    color: #fff;
    transition: all .5s;
    opacity: 0;
}

.work_content:hover .work_text span {
    bottom: 0;
    opacity: 1;
}

.work_content a.more {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.work_content:hover:hover .work_picB img {
    transform: translate(-50%, -50%) scale(1.05);
}

section.yx_about {
    padding: 5% 0;
}

.about_center {
    display: flex;
    max-width: 1720px;
    width: 94%;
    margin: 0 auto;
    align-items: center;
    flex-wrap: wrap;
}

.about_left {
    width: 50%;
    padding-right: 10%;
    letter-spacing: 2px;
}

p.ab_tit {
    font-size: var(--yx_FS42);
    color: var(--yx_Color);
    font-weight: bold;
    font-weight: bold !important;
    text-transform: uppercase;
}

p.ab_sub {
    border: 3px solid #0057B8;
    display: inline-block;
    font-size: var(--yx_FS36);
    color: var(--yx_Color);
    line-height: 170%;
    padding: 0 15px;
    margin: var(--yx_FS36) 0;
}

summary.ab_ms {
    color: #333;
    font-size: var(--yx_FS36);
    line-height: 150%;
    max-width: 700px;
    margin-bottom: var(--yx_FS48);
}

.about_left a.ab_more {
    width: 180px;
    line-height: var(--yx_FS60);
    background: #E35205;
    display: block;
    color: #fff;
    text-align: center;
    font-size: var(--yx_FS20);
    transition: all .5s;
    font-weight: bold;
}

.about_left a.ab_more:hover {
    background: #0057b8;
}

.about_img {
    width: 50%;
    text-align: center;
}

.about_img img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

section.yx_link {
    padding: 0 0 5%;
    background-image: url(/src/Img/linbg.png);
    background-position: center;
    background-size: cover;
}

.link_center {
    display: flex;
    max-width: 1720px;
    width: 94%;
    margin: 0 auto;
    align-items: center;
    flex-wrap: wrap;
}

.link_left {
    width: 52%;
    padding: 0 7%;
    color: #fff;
    letter-spacing: 2px;
}

.link_img {
    width: 48%;
    background: #fff;
    text-align: center;
    padding: 4%;
}

.link_img img {
    max-width: 100%;
    object-fit: contain;
    height: auto;
}

p.link_tit {
    font-size: var(--yx_FS42);
    font-weight: bold;
}

p.link_sub {
    font-size: var(--yx_FS36);
    margin: var(--yx_FS24) 0;
}

summary.link_ms {
    font-size: var(--yx_FS18);
}

section.yx_part {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    padding-top: var(--yx_FS20);
    align-items: center;
}

.part_left {
    width: 50%;
}

.part_img {
    width: 50%;
    line-height: 0;
    text-align: right;
}

.part_img img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.part_text {
    width: 79%;
    margin: 0 auto;
    letter-spacing: 2px;
}

p.part_tit {
    font-size: var(--yx_FS42);
    color: var(--yx_Color);
    font-weight: bold;
}

summary.part_ms {
    color: #333;
    font-size: var(--yx_FS36);
    line-height: 150%;
    max-width: 700px;
    margin: var(--yx_FS16) 0 var(--yx_FS48);
}

a.part_more {
    width: 180px;
    line-height: var(--yx_FS60);
    background: #E35205;
    display: block;
    color: #fff;
    text-align: center;
    font-size: var(--yx_FS20);
    transition: all .5s;
    font-weight: bold;
}

a.part_more:hover {
    background: #0057b8;
}


@media only screen and (min-width: 1240px) and (max-width: 1550px) {
    .swiper_text h3.sw_name {
        font-size: 32px;
        max-width: 510px;
    }

    summary.ab_ms,
    p.ab_sub,
    p.link_sub,
    summary.part_ms {
        font-size: 24px;
    }

    .work_content .work_text p.work_name {
        font-size: var(--yx_FS24);
    }

    .about_left a.ab_more,
    a.part_more {
        font-size: 18px;
    }

    summary.link_ms {
        font-size: 16px;
    }

    .product_center p.p_sum,
    p.i_sum,
    .product_center p.p_sum {
        font-size: 14px;
    }

}



@media only screen and (max-width:768px) {
    .picB {
        height: auto;
    }
    section.yx_advantage h3.adv_tit {
        max-width: 240px;
        justify-content: space-around;
        padding: 20px 0 15px;
        font-weight: normal !important;
    }
    p.adv_sum {
        max-width: 320px;
        margin: 0 auto;
        line-height: 150%;
    }
    .picB img.bannerPic {
        position: static;
        transform: none;
    }

    .swiper_text h3.sw_name {
        font-size: 24px;
    }

    ul.yx_proul {
        gap: 10px;
    }

    section.yx_product li {
        width: calc((100% - 10px) / 2);
    }

    section.yx_product .imgbox {
        padding-bottom: 60%;
    }

    .product_center p.p_sum {
        margin-bottom: 30px;
    }

    section.yx_product li .name {
        font-size: 14px;
    }

    .p_textbox {
        display: none;
    }

    .swiper_text {
        padding: 0;
    }

    .industry_center {
        width: 94%;
    }

    .moreBox a {
        width: 150px;
        height: 50px;
        border: 1px solid rgb(255, 255, 255);
    }

    .indban_but>div {
        width: 70px;
        height: 70px;
    }

    .indban_but>div img {
        max-width: 15px;
    }

    .indban_but {
        top: auto;
        bottom: 0;
        left: 50%;
    }

    .about_center,
    section.yx_work,
    section.yx_advantage,
    section.yx_industry,
    section.yx_product {
        padding: 50px 0;
    }

    section.yx_advantage {
        background-attachment: scroll;
    }

    .industry_center li.yx_List5 {
        width: 48% !important;
        margin: 1% 1% 5% !important;
    }

    .industry_center .imgbox {
        background-size: 70% auto;
        padding-bottom: 85%;
    }

    .work_content .work_text p.work_name {
        font-size: 17px;
    }

    .work_content .work_text {
        min-height: 150px;
    }

    .work_content .work_text summary {
        font-size: var(--yx_FS16);
        margin: var(--yx_FS18) 0;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .about_left {
        width: 100%;
        padding-right: 0;
        order: 2;
        text-align: center;
    }

    .about_img {
        width: 100%;
    }

    .about_left a.ab_more {
        line-height: 45px;
        margin: 0 auto;
    }

    .link_img {
        width: 100%;
        padding: 20px;
        margin-top: 20px;
    }

    .link_left {
        width: 100%;
        padding: 30px 0 50px;
        color: #fff;
    }

    section.yx_part {
        padding: 0;
    }

    .part_img {
        width: 100%;
        text-align: center;
    }

    .part_left {
        width: 100%;
        order: 2;
        padding-bottom: 50px;
    }

    .part_text {
        width: 94%;
        margin: 30px auto 0;
    }

    p.link_sub,
    summary.ab_ms,
    summary.part_ms {
        font-size: var(--yx_FS20);
    }

    a.part_more {
        line-height: 45px;
    }
}